home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 75 / XENIATGM75.iso / Shareware / X-Setup 5.0 / _SETUP.1 / XQ Windows Update 1.xpl < prev    next >
Text File  |  1999-02-07  |  1KB  |  46 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 3.1"
  2. "TYPE"="5"
  3. "COUNT"="1"
  4. "UIPATH"="System\User Data"
  5. "NAME"="Windows Update Registration"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Set Registration Done"
  8. "DESCRIPTION 1"="Before you can use the Windows 98 Update features, you normally have to register in order to use this service."
  9. "DESCRIPTION 2"="By clicking on the "Set Registration Done" button, you can use this service WITHOUT registration, so no data from your computer is sent to microsoft.com."
  10. "DESCRIPTION 3"=""Windows Update" is currently only available for Windows 98."
  11. "AUTHOR"="Xteq Systems"
  12. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  13. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@xteq.com."
  14. "COMMENT 2"="Version 1.0"
  15.  
  16.  
  17.  
  18. Sub Plugin_Initialize 
  19.  If GetWinVer<>3 then
  20.     Call Disable 
  21.  end if
  22.  
  23. End Sub
  24.  
  25. Sub Plugin_CheckData(ElementIndex)
  26. End Sub
  27.  
  28. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  29.  i=ElementIndex
  30.  Select Case i
  31.  
  32.   Case 1
  33.    s="HKLM\Software\Microsoft\Windows\CurrentVersion\RegDone"
  34.    Call RegWriteValue(s,"1",1)
  35.    
  36.    s="HKLM\Software\Microsoft\Windows\CurrentVersion\Welcome\RegWiz\@"
  37.    Call RegWriteValue(s,"1",1)
  38.  
  39.    Call MsgInformation("Information updated. You can now access Windows Update without registering.")
  40.  
  41.  end select
  42. End Sub
  43.  
  44. Sub Plugin_Terminate 
  45. End Sub
  46.